home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 004a / learnjap.zip / CLONE.DOC < prev    next >
Text File  |  1990-11-08  |  10KB  |  184 lines

  1.                  HELP FOR NEW USERS & PROBLEMS YOU MIGHT HAVE 
  2.  
  3. -------------------------------------------------------------------------------
  4.                             ABOUT FRUSTRATION
  5. -------------------------------------------------------------------------------
  6.   There are no greater masters of frustration than experienced PC users. They 
  7. have gone through the long and arduous process of learning how to use the 
  8. PC Disk Operating System. LEARNING D_O_S NEVER, EVER HAPPENS WITHOUT HEAD 
  9. BANGING AND OCCASIONAL EXPLOSIONS OF TEMPER. That's how it goes when we're 
  10. learning. We push ourselves to the limit until we hit the wall. So if you're 
  11. frustrated, good. That means you have been learning the very hardest part of 
  12. computing. If you know what I'm writing about, then you are more than likely 
  13. half way there. The point I am making is the one critical thing that stands in 
  14. the way of your becoming a competent PC user: Do not let frustration become a 
  15. symbol of failure to you. Understand that frustration is merely the signal 
  16. that you have learned enough for now and ought to take a break. That's all it 
  17. is. Believe it or not. Become an expert with your own system or not. 
  18.   Have you seen the advertisement on TV where two businessmen in an office 
  19. watch to see which computer is used more, the Macintosh or the IBM Compatible?
  20. They observe that the Mac is used more and is easier to learn. What the ad 
  21. does not tell you is that a Nintendo is easier to learn, too. PC users will 
  22. not be left behind with antiquated knowledge. The users who choose the Mac 
  23. because it is "easier" never become flexible power-users. Eventually they will 
  24. become fringe users -- who come to you for help. Never give up your investment 
  25. of learning. Do not take a step back into the easier, softer way of becoming an 
  26. applications user instead of a computer user. When things get rough, hunker 
  27. down and stick to it. Soon you will learn what you need. 
  28.   When you finally become frustrated, take a break. Turn your equipment off 
  29. for a while. Whatever it takes. When you're ready, get back to work. You're 
  30. on the right road.
  31.  
  32. -------------------------------------------------------------------------------
  33.                               ONWARD.....
  34. -------------------------------------------------------------------------------
  35.  
  36.   Public domain/shareware software can be very easy to use if you are familiar
  37. with a few basic "DOS" commands. These commands are "COPY", "DISKCOPY", "DIR",  
  38. "TYPE", "FORMAT", & a few others. Program distribution disks are not "bootable",
  39. which means that you cannot place the disk in your computer and turn it on.
  40.   The first thing to do is put a WRITE-PROTECT TAB OVER THE NOTCH ON THE 
  41. ORIGINAL DISK. Then make a backup copy of your disk with the following command:
  42.      A>DISKCOPY A: B:  <enter> - (will copy all files from 'A' to 'B')
  43.   In the event that you get some sort of error message when using "DISKCOPY",
  44. you will then have to use the "COPY" command to make a backup of your original
  45. disk. Place a blank FORMATTED disk in the "B" drive, the original disk in 'A"
  46. and enter the following command at the "A>" prompt: 
  47.      A>COPY *.* B:  <enter> - (will copy all files from 'A' to 'B')
  48.          PUT AWAY THE ORIGINAL AND MOVE THE COPY TO DRIVE A.
  49.   Now put the original disk away and use the working copy. The next thing 
  50. to do is see what files are on the disk.  Place the working copy in the 
  51. "A" drive and enter the following command:
  52.      A>DIR    <enter> - will display the filenames
  53. or   A>DIR /W <enter> - will display the filenames in "wide" format
  54. or   A>DIR >PRN <enter> will PRINT OUT a listing of the disk files.
  55.   Now you will see many different filenames.  A filename consists of two parts;
  56. the filename & the extension.  The filename will be on the left (up to 8 
  57. characters long) & the extension will be just to the right (up to 3 characters 
  58. long):
  59.                             filename.ext
  60.  
  61. You will be looking for certain EXTENSION names; which will tell you 
  62. something about that type of file.  
  63.  
  64. ******************************************************************************
  65. * .EXE - a program file - type in the name & press the enter key.            *
  66. * .COM - a command file - type in the name & press the enter key.            *
  67. * .BAT - a batch file - many uses, type in the name & <enter>. Can be edited.*
  68. * .DOC - A DOCUMENTATION FILE - instructions about the program - READ THIS   *
  69. * .TXT - A DOCUMENTATION FILE - instructions about the program - READ THIS   *
  70. * .MAN - A DOCUMENTATION FILE - instructions about the program - READ THIS   *
  71. * .ARC - an ARCHIVED file. ARCing is an obsolete file compression method.    *
  72. * .ZIP - a PKZIP and PKUNZIP compressed file. (replaced .ARC)                *
  73. * .BAS - a BASIC program file. Uses GWBASIC, BASICA or BASIC to run          *
  74. ******************************************************************************
  75.  
  76.   You may also see files like MANUAL, READ.ME or README.1ST or just README. 
  77. These are all documentation files that will tell you about the program or how 
  78. to work the program properly. 
  79.  
  80. VERY IMPORTANT:  READ DOCUMENTATION FILES FIRST BEFORE RUNNING THE PROGRAM!!!
  81.  
  82. ===============================================================================
  83.  
  84.   To view a documentation file on your screen, use the "TYPE" command.
  85. With your program disk in the "A" drive enter the following command:
  86.      A>TYPE filename.ext  (enter) 
  87. -- where filename.ext would be whatever the filename is that you wish to view.
  88.   This will display the documentation to the screen.  To stop the text
  89. from scrolling by, press "CTRL S" (the CTRL key and "S" key at the same
  90. time), any other key to resume scrolling. To obtain a printout of the
  91. documentation simply replace the "TYPE" command with the "DOS" command
  92. "COPY". Turn your printer on and enter the following command:
  93.      A>COPY filename.ext PRN <enter> - where filename would be README.DOC or 
  94.                                        whatever file you wish to print.
  95.  
  96.      Alternatives to the TYPE command are the files VIEW.COM and SHOW.COM.
  97.  
  98.                        SHOW CLONE.DOC <enter>
  99.                                or
  100.                        VIEW CLONE.DOC <enter>
  101.  
  102.   If this is all new to you, it is suggested that you print CLONE.DOC on your 
  103. printer and then try each activity: COPY, DISKCOPY, VIEW, and SHOW. You'll 
  104. soon get the hang of it!
  105.  
  106. ===============================================================================
  107.  
  108.   An "EXE", "COM", or "BAT" file extension means that when you enter the 
  109. filename, the computer will do something. For instance, if the filename were 
  110. "POKER.EXE", or "POKER.COM, or "POKER.BAT" you would enter the following at 
  111. the "A" prompt:
  112.      A>POKER  <enter> - the poker program would now come up on the screen.
  113.  
  114.   TYPE or SHOW any files with a .DOC , .TXT or .MAN (for 'manual') extension 
  115.   to see  what the .COM or .EXE program of the same name will do, or copy it 
  116.   to the printer (PRN).
  117.  
  118. ===============================================================================
  119.  
  120.    To run a BASIC program (Example: FOOBAR.BAS):
  121.    -Put your DOS system disk in drive B: and the program disk in A:.
  122.    -At the A> prompt, enter B:BASICA FOOBAR (recommended)
  123.                              or
  124.    -Enter B:BASICA and when the screen says 'OK', type RUN"FOOBAR
  125.  
  126. Those with GWBASIC will replace BASICA with the word GWBASIC.
  127.  
  128.   By the way, when your BASIC program is finished you will most likely 
  129.   find yourself "in" BASIC.  To get out, type the word SYSTEM.
  130.                                     -- Helpful Beginner's Tip #445,092
  131.  
  132. ===============================================================================
  133.  
  134.   Hopefully this help sheet will enable you to understand & use your disks.
  135. If all this still sounds like "GREEK" to you, then we strongly suggest that 
  136. you purchase the following disks:
  137.  
  138.       DOS TUTORIAL - an beginners program teaching about your
  139.                      computer & how to use "DOS" commands. The 
  140.                      disk also provides a DOS HELP facility -- 
  141.                      on-line help screens for "DOS" commands.
  142.   TUTORIAL FOR DOS - an absolutely complete DOS tutorial.
  143.                      Four disks.
  144.  
  145.          YOU SHOULD HAVE THESE DISKS! THEY WILL SAVE YOU AN 
  146.          AWFUL LOT OF TIME AND HEADACHE AND WILL MORE THAN
  147.          LIKELY SAVE YOU MONEY TOO.
  148.  
  149.                            EASY DOES IT!
  150. ===============================================================================
  151.                  MANDATORY UTILITIES FOR THE BEGINNER.
  152.  
  153.   DOS was originally slapped together when the PC was introduced to compete 
  154. with the other Personal Computers on the market. It was not complete then and 
  155. it is not complete now. One prime DOS deficiency is that when files are 
  156. DELeted, they are gone forever. UNDEL.COM and UNERASE.COM are available as 
  157. Public Domain software. Better, PMK.EXE, Professional Master Key, recovers 
  158. deleted files (and performs other jobs) from a very easy-to-use menu.
  159.   Another example is the lack of a MOVE instruction. To move a file from one 
  160. drive or directory to another, one first has to COPY the file to the new 
  161. location and then DELete the file from the original location. MOVE.COM performs 
  162. both tasks with one command.
  163.  
  164. ===============================================================================
  165.   Further, at your earliest convenience, we recommend your upgrading to 4DOS 
  166. which will replace your COMMAND.COM file and provide over 70 other useful 
  167. commands. 4DOS also contains a built-in F1-key HELP system. 4DOS disks are 
  168. available from CLONEWARE.
  169. ===============================================================================
  170.  
  171.        ***THANKS  FOR BUYING YOUR SHAREWARE FROM CLONEWARE***
  172.        ***IF YOU WOULD LIKE TO ORDER MORE SOFTWARE, WRITE:***
  173.  
  174.                           CLONEWARE, 
  175.                         21 Metcalf Ave.
  176.                    North Providence, RI 02911
  177.  
  178.        *** IF YOU ARE  LOOKING FOR A PARTICULAR SOFTWARE ***
  179.        *** TITLE, OR IF YOU NEED A CONSULTANT TO CUSTOM- ***
  180.        *** CONFIGURE YOUR EQUIPMENT, PLEASE CALL:        ***
  181.  
  182.     Michael Walsh (401) 353-6891     Free RI delivery on 10 or more disks.
  183.  
  184.